CircleDrillShapePattern IsClockwise
Get or Set the scanning direction for the circle drill shape pattern. Setting the property will result in a clock-wise scanning and wise versa.
public bool IsClockwise{get;Set} |
Return value
bool | Clock-wise if set to TRUE |
Example
Copy
CircleDrillShapePattern circleDrilPat = new CircleDrillShapePattern();
circleDrilPat.DeltaRadius = 1;
circleDrilPat.IsClockwise = false;
circleDrilPat.IsConcentricCirclesEnabled = true;
circleDrilPat.MaxRadius = 6;
circleDrilPat.MinRadius = 2;
circleDrilPat.RevsPerCircle = 1;
circleDrilPat.UsePointRadiusAsMaxRadius = true;
//Create a spiral shape.
DrillShape drillShape = new DrillShape();
drillShape.SetPattern(circleDrilPat);
drillShape.AddCirclePoint(0, 0, 0, 10);
drillShape.AddCirclePoint(10, 10, 0, 10);
drillShape.AddCirclePoint(20, 20, 0, 10);
// Add the Drill shape to vector image
vectorImage.AddDrill(drillShape);